home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / status / vmstat-1.0 / vmstat-1 / Makefile next >
Makefile  |  1995-02-23  |  326b  |  18 lines

  1.  
  2. # Clone of BSD's vmstat, slightly improved for Linux
  3. #
  4. # $Id: Makefile,v 1.1 1995/02/23 19:22:52 lm Exp $
  5.  
  6. PREFIX=/usr
  7. CFLAGS=-O2
  8.  
  9. vmstat: vmstat.c
  10.     $(CC) $(CFLAGS) -o vmstat vmstat.c
  11.  
  12. install: vmstat vmstat.8
  13.     cp vmstat $(PREFIX)/bin/vmstat
  14.     cp vmstat.8 $(PREFIX)/man/man8/vmstat.8
  15.  
  16. clean:
  17.     /bin/rm -f vmstat *.o a.out core
  18.